home *** CD-ROM | disk | FTP | other *** search
/ Electronics Boutique Catalog 1996 Spring / 1996 Electronics Boutique Spring CD-ROM (USA).bin / eb / shared.dir / 00544.ls < prev    next >
Encoding:
Text File  |  1996-03-20  |  317 b   |  17 lines

  1. on exitFrame
  2.   global startflag, rotateCounter
  3.   if startflag = 0 then
  4.     set rotateCounter to 1
  5.     set startflag to 1
  6.   end if
  7.   set rotateCounter to rotateCounter + 1
  8.   if rotateCounter < 10 then
  9.     go(#loop)
  10.   else
  11.     soundstopper()
  12.     set startflag to 0
  13.     set rotateCounter to 1
  14.     go(#next)
  15.   end if
  16. end
  17.